body {
	background-color: #FFFFFF;
	color: #FFFFFF;
	font-family: Bookman Old Style;
	font-size: 16px;
	margin: 0;
	padding: 60px;
}

header {
	background-color: #2A4A72;
	color: #000000;
	padding: 20px;
}

h1 {
	color: #000000;
}

h2 {
	color: #000000;
	font-size: 16px;
}

p{
font-family: Bookman Old Style;
color:#000000;
}

nav {
  display: flex;
  justify-content: center;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #DBE7FF;
  position: relative;
  display: inline-table;
}

nav ul li {
  float: left;
}

nav ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 16px;
  color: #C7DCFF;
}

nav ul li:hover {
  background: #2A4A72;
}

nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
}

nav ul ul li {
  float: none;
  position: relative;
}

nav ul ul li a {
  padding: 10px 35px;
  color: #DBE7FF;
}

nav ul ul li a:hover {
  background-color: #C7DCFF;
  color: #2A4A72;
}

nav ul li:hover > ul {
  display:inherit;
}

main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 8px auto;
	max-width: 1100px;
}

form {
  background-color: #DBE7FF;
  border: 1px solid #1A2848;
  border-radius: 5px;
  padding: 20px;
  margin: 10px auto;
  max-width: 500px;
}

label {
  display: inline-block;
  color: #000000;
  width: 120px;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 80%;
  padding: 12px;
  border: 1px solid #2A4A72;
  border-radius: 4px;
  resize: vertical;
}

input[type="submit"] {
  background-color: #2A4A72;
  color: #FFFFFF;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #1A2848;
}

input[type="submit"]:focus {
  outline: none;
}

textarea {
  height: 150px;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2A4A72;
  color: #DBE7FF;
  padding: 5px;
}

#FootNav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #DBE7FF;
  text-align: center;
}

#FootNav ul li {
  display: inline;
  color: #DBE7FF;
}

#FootNav ul li a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #DBE7FF;
}

ul {
  list-style: circle;
  color: #000000;
}

.sidebar {
	background-color: #FFFFFF;
	padding: 20px;
	display: flex;
	align-items: left;
}

.image-wrapper {
	position: relative;
	max-width: 300px;
	margin-right: 50px;
}

.sidebar img {
	display: block;
	width: 80%;
	height: auto;
	filter: none;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1.5;
}

.image-wrapper:hover .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1.5;
}

.image-wrapper:hover img {
	filter: none;
}

.sidebar h2 {
	color: #000000;
	font-size: 24px;
	margin: 0 0 30px;
}

.sidebar-left,
.sidebar-right {
  width: 10%;
  background-color: #1A2848;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 1;
}

.sidebar-left {
  left: 0;
}

.sidebar-right {
  right: 0;
}

.footer a {
	color: DBE7FF;
	justify-content: center;
}

.content {
	flex: 2;
	margin: 0
	font-size: 14px;